Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/208 - Pig Dice Game/

README.md /cody/swapnilsparsh/30DaysOfJavaScript/208 - Pig Dice Game/README.md
263 Views
0 Comments
# Pig Game (JavaScript)

Welcome to the Pig Game! This simple web-based game allows two players to take turns rolling dice and c
assets /cody/swapnilsparsh/30DaysOfJavaScript/208 - Pig Dice Game/assets/
10 Items
  • 1.png
  • 2.png
  • 3.png
  • 4.png
  • 5.png
  • 6.png
  • dice1.png
  • dice2.png
  • index.html /cody/swapnilsparsh/30DaysOfJavaScript/208 - Pig Dice Game/index.html
    359 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge"
    jss.js /cody/swapnilsparsh/30DaysOfJavaScript/208 - Pig Dice Game/jss.js
    216 Views
    0 Comments
    `use strict`;

    const diceFaces = document.getElementById("diceFaces");
    const newGame = document.getElementById("newGame");
    const
    style.css /cody/swapnilsparsh/30DaysOfJavaScript/208 - Pig Dice Game/style.css
    154 Views
    0 Comments
    @import url("https://fonts.googleapis.com/css2?family=Aboreto&family=DynaPuff&display=swap");
    html {
    box-sizing: border-box;
    }